home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
boot
/
netBoot.new
/
udp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-12-19
|
294b
|
14 lines
/* @(#)udp.h 1.1 86/09/27 SMI; from UCB 4.3 81/11/18 */
/*
* Udp protocol header.
* Per RFC 768, September, 1981.
*/
struct udphdr {
u_short uh_sport; /* source port */
u_short uh_dport; /* destination port */
short uh_ulen; /* udp length */
u_short uh_sum; /* udp checksum */
};